


$(document).ready(function(){
			   
	$('#boutique').boutique({
		container_width: 930,
		front_img_width: 436,
		front_img_height: 238,
		starter: 4,
		speed: 900,
		hoverspeed: 300,
		hovergrowth: false,
		behind_opac: 1,
		back_opac: 0,
		behind_size: 0.6,
		back_size: 0.1,
		autoplay: true,
		autointerval: 4000,
		freescroll: false,
		easing: 'easeInOutCubic'
	}); 
	
	 	
		$('.dd').hide();
		$('#navigation ul li').hover(function(){ 
			$(this).find('.dd:eq(0)').stop(true,true).show();
			$(this).find('a:eq(0)').addClass('hover');
		 },
		 function(){  
			$(this).find('.dd').stop(true,true).hide();
			$(this).find('a:eq(0)').removeClass('hover');
	 	});
	

	 	
	 	//PNG FIX for IE6
		if($.browser.msie && $.browser.version.substr(0,1) == 6 ){
			DD_belatedPNG.fix('#header .shell,.logo-holder p.slogan, #footer .topics, #navigation .dd .dd-t, .inner-page .intro, #main .slider .button-left, #main .slider .button-right, .inner-page #main .sidebar .contact-form .contact-b, .inner-page #main .sidebar .contact-form .contact-bg, .inner-page #main .sidebar .contact-form h4')
		}
		

        $('.blink').
            focus(function() {
                if(this.title==this.value) {
                    this.value = '';
                }
                $(this).css('borderColor', '#cdbe1a')
            }).
            blur(function(){
                if(this.value=='') {
                    this.value = this.title;
                }
                  $(this).css('borderColor', '#ffffff')
            });
			
           
       
		
            
});


function link_callback (anchor) {
	 $('a.popup').click(function  () {
	 		$(this).next().show();	
	 		
        });
        
    
}


