jQuery.noConflict();
jQuery(document).ready(function() {

	jQuery("<img />")
	    .attr("src", "imageURL.png")
	    .load(function(){
	        jQuery(".menyobjekt").append( jQuery(this) );
	        // Your other custom code
	    });
	
	
	jQuery(function() {
		jQuery(".menyobjekt").hover( function () {
				jQuery(this).attr("src", jQuery(this).attr("src").replace(/0.png/, "1.png"));
		},
		
		function () {
				jQuery(this).attr("src", jQuery(this).attr("src").replace(/1.png/, "0.png"));
		}
		);
	});
	
	
	jQuery(".moviefloat a").click(function(){
        window.open(this.href);
        return false;
    });
	
	jQuery("a[href$=.jpg],a[href$=.png],a[href$=.gif]").fancybox({"hideOnContentClick":true,"centerOnScroll":true,"ShowCloseButton":true});
	
});
