// JavaScript Document
var hp_preload = new Array();
var hpImages = new Array("http://www.charm.ro/skin/frontend/charm/default/images/hp1.jpg","http://www.charm.ro/skin/frontend/charm/default/images/hp2.jpg","http://www.charm.ro/skin/frontend/charm/default/images/hp3.jpg","http://www.charm.ro/skin/frontend/charm/default/images/hp4.jpg");
var hpLinks = new Array("#","http://www.puma-fragrances.com/ro-ro/chillout-zone.php","#","#");

var openedCategory='';
var openedIm='';


for (i = 0; i < hpImages.length; i++) { 
		hp_preload[i] = new Image();
		hp_preload[i].src = hpImages[i];
	}
	
function hps(id)
{	
		document.getElementById('hp_photo').src=hp_preload[id].src;
		document.getElementById('ahp').href=hpLinks[id];
		
		for(i=0;i<4;i++)
		{
			document.getElementById('hp_cat'+i).className='hp_cat';
			document.getElementById('hp'+i).style.display='none';
		}
		document.getElementById('hp_cat'+id).className='hp_cat_select';
		document.getElementById('hp'+id).style.display='';
	
}

function showHide(id,im, path1, path2)
{
		if(openedCategory!='' && openedCategory!=id)
			if(document.getElementById(openedCategory).style.display=='')
				showHide(openedCategory,openedIm, path1, path2);
			
		openedCategory=id;
		openedIm=im;
		//alert(id);
		el=document.getElementById(id);
		if(el.style.display=='none')
			el.style.display='';
		else el.style.display='none';
		
		if(im.src==path1)
			im.src=path2;
		else im.src=path1;
}

jQuery(document).ready(function(){
	//alert("ok");
	$("#facebook").fancybox().trigger('click');
	});
