// JavaScript Document

$(document).ready(function() {
						   
		//var leftWidth = $('#left-width').width();
		//var rightWidth = $('#right-width').width();
		//var windowWidth = $('body').width();

		//$(window).bind("load", resizeWindow);
		//$(window).bind("resize", resizeWindow);
		
		//function resizeWindow(e) {
		//	if (leftWidth + rightWidth < windowWidth)
		//	{
		//		$('#right-width').show();
		//	}
		//}
						  
		$('#offer-buttons a img').hover(function(){
			$(this).stop().animate({ "opacity" : .33 });
			},
			function() {
			$(this).stop().animate({ "opacity" : 1 });	
		});
}); 
