/*
 * Image preview script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */
 
this.imagePreview = function(){	
	/* CONFIG */
		
		xOffset = 10;
		yOffset = 30;
		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result
		
	/* END CONFIG */
    if( $("img.preview") == null)
    {
      return;
    }
    
	$("img.preview").hover(function(e){
		this.t = this.alt;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
 		$("body").append("<p id='preview'><img src='"+ this.src +"' alt='"+this.t+"' />"+ c +"</p>");								 
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#preview").remove();
    });	
	$("img.preview").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};


// starting the script on page load
$(document).ready(function(){ 
    downupcategory();
    imagePreview();                
});

function downupcategory(){
    $("#categoriesContent p.menu_head").click(function(){   
        $(this).next("div.menu_body").siblings("div.menu_body").slideUp("slow")       
        $(this).next("div.menu_body").slideToggle(300).next.siblings("div.menu_body").slideUp("slow");
    });
}

function check()
{
    var  strst3=document.getElementById("attrib-1").value;     
    if(strst3=='1')
    {
          alert("Please Select Your Size");
        return false;
    }
    return true;

}

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=500,height=500,screenX=150,screenY=150,top=150,left=150')
}

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=500,height=500,screenX=150,screenY=150,top=150,left=150')
}
function picshow(url) {
  window.open(url,'picshow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=810,height=600,screenX=150,screenY=150,top=150,left=150')
}