jQuery(document).ready(function($){
	$(".products-section").bind("mouseenter",function(){
		$(this).find("h3.section-heading").css("background-position","0 0");
	}).bind("mouseleave",function(){
		$(this).find("h3.section-heading").css("background-position","0 -26px");
	});

	$(".feature-line").bind("mouseenter",function(){
		$(this).css("background","#fff");
	}).bind("mouseleave",function(){
		$(this).css("background","transparent");
	});
})