jQuery.noConflict();
jQuery(document).ready(function(){
	
	jQuery("div#naviImages img").css("opacity","0");
	jQuery("#navi li a").hover(
		function () {jQuery("#naviImages img."+jQuery(this).attr("class")).animate({opacity: 1.0}, 400);},
		function () {jQuery("#naviImages img."+jQuery(this).attr("class")).animate({opacity: 0.0}, 400);}
	);
	
		jQuery("#imageContainer").append(jQuery("<img/>").addClass("placeholder").attr({ src: 'images/placeholder.jpg', alt: '' }));
		var src = jQuery("#imageGallery img").eq(0).attr("src").replace("-th", "");
		jQuery("#imageContainer img").attr("src", src);
		
		jQuery("img.thumbs").mouseover(function() { 
			var src = jQuery(this).attr("src").replace("-th", "");
			jQuery("#imageContainer img").attr("src", src);
		})
});

	
	


