//	var img1=new image();
//	img1.src='img/product_bigs/'+type+'_orange.jpg';

//	var img2=new image();
//	img2.src='img/product_bigs/'+type+'_white.jpg';

//	var img3=new image();
//	img3.src='img/product_bigs/'+type+'_pink.jpg';

//	var img4=new image();
//	img4.src='img/product_bigs/'+type+'_geen.jpg';

//	var img5=new image();
//	img5.src='img/product_bigs/'+type+'_blue.jpg';

//	var img6=new image();
//	img6.src='img/product_bigs/'+type+'_yellow.jpg';


//	var imgSTR1=new image();
//	imgSTR1.src='img/product_bigs/'+type+'_stripe_1.jpg';

//	var imgSTR2=new image();
//	imgSTR2.src='img/product_bigs/'+type+'_stripe_2.jpg';

//	var imgSTR3=new image();
//	imgSTR3.src='img/product_bigs/'+type+'_stripe_3.jpg';

//	var imgSTR4=new image();
//	imgSTR4.src='img/product_bigs/'+type+'_stripe_4.jpg';


//	var imgSTR5=new image();
//	imgSTR5.src='img/product_bigs/'+type+'_stripe_5.jpg';



function changeBig(type, color)
	{
		var bigobj=document.getElementById('bigpreview');
		bigobj.src='img/product_bigs/'+type+'_'+color+'.jpg';
	}


function colorOn(color)
	{
		var obj=document.getElementById(color);
		var doo=color+'_link';
		var objLink=document.getElementById(doo);

		obj.className=color+'_on';
		obj.style.cursor='Hand';
		objLink.style.color='white';
		
	}

function colorOff(color)
	{
		var doo=color+'_link';
		var objLink=document.getElementById(doo);
		var obj=document.getElementById(color);
		obj.className=color;
		obj.style.cursor='Hand';
		objLink.style.color='#ab94a5';

	}



		  		function popup(name)
				{
	
window.open('system_contents/types/'+name,'media_popup','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=585,height=410');
				}				
