$(window).bind('load', function() {
	var window_height = $(window).height();
	var usemefirst = window_height - (315+90);
	$('#content').css('min-height',usemefirst);
	
	var highestCol = Math.max($('#sidebar').height(),$('#content').height());
	$('#content').height(highestCol);
});

$(window).bind('resize', function() {
	var window_height = $(window).height();
	var usemefirst = window_height - (315+90);
	$('#content').css('min-height',usemefirst);
});

$(document).ready(function() {
	$('#random').cycle({
		fx: 	'fade',
		speed:	'5000',
		timeout:'2000',
		random:	1
	});
});
