jQuery.noConflict();
jQuery(function(){
	
    if (!((jQuery(".custom-sidebar-block").length) == 0)) jQuery(".custom-sidebar-block").tabs({
        fx: {
            opacity: 'toggle'
        }
    });

    jQuery('.pics').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

    jQuery('ul#nav2').superfish({
            delay:       200,                            // one second delay on mouseout
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
            speed:       'fast',                          // faster animation speed
            autoArrows:  true,                           // disable generation of arrow mark-up
            dropShadows: false                            // disable drop shadows
        });

    jQuery("#s").focus(function(){
        jQuery(this).val("");
    },function(){
        jQuery(this).val("Search this website");
    });

});
