// Peaches Uniforms script

$(document).ready(function(){
													 
	jQuery.imgzoom(); // load image zoom for style detail page
	
	// create slideshow array (slideshow3.js)
	var fadeimages=new Array()
	//SET IMAGE PATHS. Extend or contract array as needed
	fadeimages[0]=["images/rd_h1.jpg", "", ""]
	fadeimages[1]=["images/rd_h2.jpg", "", ""]
	fadeimages[2]=["images/rd_h3.jpg", "", ""]
	
	var fadebgcolor="#dce3ad"

});

// used in template left rail - expands/contracts search windows
function toggleDiv(divid){
	if(document.getElementById(divid).style.display == 'none'){
		document.getElementById(divid).style.display = 'block';
	}else{
		document.getElementById(divid).style.display = 'none';
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}