// JavaScript Document

$(document).ready(function() {

		// ***************** shopping cart area ***********************
		// hides the shopping cart area as soon as the DOM is ready
   		$('#cartarea').hide();
		
		// allows the shopping cart area to be toggled
		$('a#carttoggle').click(function() {
    		$('#cartarea').slideToggle(200);
			 return false;
		});
		// ***************** advanced search box ***********************

});

$(document).ready( function(){ 
		$('#imagerotator').innerfade({ 
				speed: 2000, 
				timeout: 5000,
				type: 'random', 
				containerheight: '110px' }); 
}); 