jQuery.noConflict();
(function($){
	$(function() {
/* ############### START JQUERY CODE ###############*/
$("a img").hover(function(){
	$(this).not(":animated").animate({"opacity":"0.7"},1);
},function(){
	$(this).animate({"opacity":"1"},1);
});
$("#pageToTop").click(function(){
	$('html,body').animate({scrollTop:0},'slow','swing');
	return false;
})
/* ############### END JQUERY CODE ###############*/
	});
})(jQuery);
