jQuery(document).ready(function(){
	$("#accordion").accordion({
		autoHeight: false,
		active: '.selected'
	});
	$("#newsletter-remove").click(function(){
		$("#newsletter-form .action").html('<input type="hidden" name="newsletter-action" value="remove" />');
		$("#newsletter-form").submit();
	});
	$("#pick-up").click(function(){
		$("#order-confirmation-form").submit();
	});
	$('#newsletter-form .textfield').bind('focus', function(){
        if( this.value == this.defaultValue ) {
            this.value = "";
        }
    });
    $('#newsletter-form .textfield').bind('blur', function(){
        if( !this.value.length ) {
            this.value = this.defaultValue;
        }
    });
    $('a.product-picture').fancybox({
    	'titleShow'	: false,
    	'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'hideOnContentClick' : true
    });
    $('.tooltip').fancybox({
    	'titleShow'	: false,
    	'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'hideOnContentClick' : true
    });
    $('.news-image a').attr('rel', 'fancybox').fancybox({
    	'titleShow'	: false,
    	'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'hideOnContentClick' : true
    });

});
