$(function() {
   var search_q = $("#search_q").val();

   $("#cmenu ul.sf-menu").superfish({
        animation: 		{height: 'show'},
        speed: 			200,
        delay: 			600,
        autoArrows:             false,
        dropShadows:            false
   });

   $("#prmenu ul.sf-menu ul").each(function() {
       $(this).superfish({
                animation: 		{width: 'show'},
                speed: 			200,
                delay: 			600,
                autoArrows:             false,
                dropShadows:            false
        });
   });

   $("#search_q").click(function() {
       if(search_q == $(this).val()) {
           $(this).val('');
       }
   });

   $("#search_q").blur(function() {
       if($(this).val() == '') {
           $(this).val(search_q);
       }
   });

   $(".item-box a").click(function() {
       //$(this).parent().parent().hide();
   });

   $("a[rel^='gallery']").prettyPhoto({
        animationSpeed:'fast'
       ,slideshow:3000
   });

});
