var selfFlag = 0;

$(function(){

	if(scripts_isIE6) $(document).pngFix();

	$("a[rel^='lightbox']").prettyPhoto({
			animationSpeed: 'slow',
			padding: 40,
			opacity: 0.85,
			showTitle: false,
			allowresize: true,
			counter_separator_label: '/',
			theme: 'light_rounded'
	});


     // ROLLOVERS

   $("a.ro").mouseover(function(){

	var imgArr = $(this).children("img").attr("src").split(".");
	var imgPart1 = imgArr[0];
	var imgPart2 = imgArr[1];
	//alert(imgPart1 + " " + imgPart2);
	if(imgPart1.lastIndexOf("over") == -1){
	   $(this).children("img").attr("src",imgPart1+"-over."+imgPart2);
	   selfFlag = 1;
	}else{
	   selfFlag = 0;
	}

  }).mouseout(function(){
    if(selfFlag == 1){
    	var imgOut = $(this).children("img").attr("src").replace(/-over/,"");
	   $(this).children("img").attr("src",imgOut);
	   selfFlag = 0;
	}
  });

  
});