$(document).ready(function(){
	
	// top CTA rollover
/*	$('div.top_cta_box').hover(function(){
		$(this).css
										});*/
	
	
	// bottom divs rollover
	$('.btm_third, .top_cta_box').hover(function(){
		//alert( $(this).width() );
		var moveBg = $(this).width() + 10;
		
		$(this).css({"background-position": "-"+moveBg+"px top"});
	},
	function(){
		$(this).css({"background-position": "left top"});
	});
});