$(function() {

$('.slideshow').cycle({ 
    fx:    'fade',
	cleartypeNoBg:true 
});

$("a[href^='http']").not("[href*='cobistyle.com']").click(function(){
	window.open(this.href);
	return false;
});

$("a[href*=.pdf]").click(function(){
	window.open(this.href);
	return false;
});


	    $("ul.sf-menu").superfish({ 
        pathClass:  'current', 
	    delay:         400,
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        });  
    $(".readMore",this).click(function () {
      $("#full").slideToggle(); 	
         if($(this).text()=='show less') {
        $(this).html("read more");
        } else {
        $(this).html("show less");
        }
      return false;
    });



$(".prefilled").focus(function() {  
	this.value = '';
});  

$(".prefilled").blur(function() {  
     if ($.trim(this.value) == ''){  
         this.value = (this.defaultValue ? this.defaultValue : '');  
     }  
});  


});
