	$(document).ready(function() {
		var colsleft_height	=	$('#colsright').height();
		//alert(colsleft_height);
		
		var bottomleft	=	$('#bottom_bg');
		var footertop	=	$('#footer');
		var fposition = footertop.position();
		//alert("Footer: " + fposition.top + "doc height: " + $(document).height());
		var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() );
		if(is_chrome)
			//$("#bottomleft").animate({"top": $(document).height()-49}, 10);
			$("#bottomleft").animate({"top": fposition.top-371}, 10);
		else
			$('#bottomleft').animate({"top":colsleft_height-371},10);

	//	$('#bottomleft').css('background','url('+themePath+'themes/images/logo.jpg) left bottom');
		$('#topleft').mouseenter(function(){
			$('#topleft').css('background','url('+themePath+'themes/images/top-pattern-green.jpg) no-repeat scroll 1px 50% transparent');
			//$('#topleft').css('padding-left','1px');
		});
		$('#topleft').mouseleave(function(){
			$('#topleft').css('background','url('+themePath+'themes/images/top-pattern.jpg) no-repeat scroll 1px 50% transparent');
			$('#topleft').css('padding-left','1px');
		});
	
		// for bottom part
		$('#bottomleft').mouseenter(function(){
			$('#bottomleft').css('background','url('+themePath+'themes/images/logo_1-hover.jpg) left bottom');
		});
		$('#bottomleft').mouseleave(function(){
			$('#bottomleft').css('background','url('+themePath+'themes/images/logo_1.jpg) left bottom');
		});
	});
