﻿jQuery(document).ready(function(){

// ****** Header Messages **************************************

	jQuery('.header-message > #slide-images').cycle({
		speed:1000
	});
	
// *************************************************************

// ***************** Contact Us ********************************

	jQuery('a#enlarge-map').fancybox();

// *************************************************************

// ***************** Guardian Stores ***************************

	jQuery('a#guardian').fancybox();

// *************************************************************

// ***************** Accordion Side Nav ************************

	jQuery('.accordion').accordion({
		header: "h4",
		navigation: true,
		animated: 'bounceslide',
		autoHeight: false,		
		event: "mouseover"
	});

// *************************************************************

// ***************** Product Shop Tab **************************

	jQuery('.product-essential').tabs();
	jQuery('.product-collateral').tabs();

// *************************************************************	

// ****************** Product Review Form **********************

	var $dialog = jQuery(".product-view .review-form").dialog({ modal: true, autoOpen: false, width: '550px', title: 'tell us what you think', draggable:false, resizable:false });
	
	jQuery('#write-a-review').click(function(){
		$dialog.dialog('open');
		return false;
	});

// *************************************************************

	
});


