﻿$(document).ready(function() {
	$("a.popup").fancybox({  });
    $("#site_holder").pngFix(); 
	
	var hoverPic = $(".play_botton").attr('rel');
	var hoverPicImg = $('<img />').attr('src', hoverPic);
	
	$(".play_botton").hover(
	  function () {
		//alert('in');
        var hoverPic = $(this).attr('rel');
		var Pic = $(this).attr('src');
		$(this).attr('src', hoverPic);
		$(this).attr('rel', Pic);
        return false;
	  }, 
	  function () {
		//alert('out');
        var Pic = $(this).attr('rel');
		var hoverPic = $(this).attr('src');
		$(this).attr('src', Pic);
		$(this).attr('rel', hoverPic);
        return false;
	  }
	);
	
	$(".subMenu li").hover(
	  function () {
		//alert('in');
        $(this).addClass('trail_t');
		$(this).prev().removeClass('trail_t');
        return false;
	  }, 
	  function () {
		//alert('out');
		$(this).removeClass('trail_t');
        return false;
	  }
	);
	
	$(".big_boxfixt_middle_img").lazyload({ placeholder : "/Upload/Design/loading.gif", effect : "fadeIn" });

	$(".lavaLampWithImage li.trail").addClass("current");
	
	$(".lavaLampWithImage").lavaLamp({
	    fx: "backout",
	    speed: 700
	});
	
	
});


