jQuery.noConflict();

(function($){//BEGIN jQuery
$(function(){//BEGIN jQuery.ready()

$("#pgLanding h1 img").hover(
	function(){
		$(this).attr("src","img/landing_main_over.jpg");
	},
	function(){
		$(this).attr("src","img/landing_main.jpg");
	}
);

});//END jQuery.ready()
})(jQuery);//END jQuery


