$(function(){
		$('#foxboro_menu li a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -45px)"}, {duration:300})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:150, complete:function(){
				$(this).css({backgroundPosition: "0 0"})
			}})
		})
		
		
	$('#rfqButton a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-362px 0)"}, {duration:200})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:300, complete:function(){
				$(this).css({backgroundPosition: "0 0"})
			}})
		})
		
		
	jQuery("a[rel='lightbox']").colorbox();
	jQuery(".youtube").colorbox({width:"58%", height:"80%", iframe:true});
	
});