 $(document).ready(function(){
	 var pathname = window.location;
	// var s = 'oniserver//blend';
	 var s = 'www.a-blend.com';
		$('#menu').find('li').find('ul').animate({height:1},0);
	 
	 if((pathname.href == ("http://"+s+"/index.php?index")) || (pathname.href == ("http://"+s+"/index.php?home"))|| (pathname.href == ("http://"+s+"/?index")))
	 {
		$('#menu').hide(0);
		$('#menu').find('li').hide();
		$('#menu').show(1000,'',function(){$('#menu').find('li').show(500);});
	 }
	 
	$('.collapsible').hover(function(){$(this).find('ul').stop().animate({height:80},200);$(this).parent().stop().animate({top:30},200);},function(){$(this).find('ul').stop().animate({height:1},200);$(this).parent().stop().animate({top:60},200);})
 	
	$().piroBox({
      my_speed: 300, //animation speed
      bg_alpha: 0.5, //background opacity
      slideShow : 'true', // true == slideshow on, false == slideshow off
      slideSpeed : 3, //slideshow
      close_all : '.piro_close' // add class .piro_overlay(with comma)if you want overlay click close piroBox
      });
 
 });
