//When the page has loaded...
$(document).ready(function() {

	if (($.browser.msie) && ($.browser.version == "6.0")){
		//Fix the drop down menu mouse over action for IE 6...
		$('#navigation li').mouseenter(function() {
			$('ul', this).css('visibility', 'visible');
		});
		
		//Fix the drop down menu mouse out action for IE 6...
		$('#navigation li').mouseleave(function() {
			$('ul', this).css('visibility', 'hidden');
		});	
	}	

	if($('#slideshow').length > 0){
		// Call in slideshow page
		$.get('/poker/templates/ontilt/slideshow.php', function(data) {
			$('#slideshow').html(data);		
			
			//Start image slideshow...		
			$('#slideshow').cycle({  
				fx: 'fade', 
				delay: -3000 ,
				pager:  '#slide-changer',
				pagerAnchorBuilder: function(idx, slide) { 
					return '#slide-changer a:eq(' + idx + ')'; 
				}
			});
		});
	}
	
	$(".product-list li:last").addClass("remove_last");
	$("#ProductBreadcrumb ul:first li:last").addClass("remove_arrow");
	$(".page-breadcrumb ul:first li:last").addClass("remove_arrow");
	$("#ProductBreadcrumb ul:first").addClass("visible_breadcrumb");
	$(".pagination-pages li:first").addClass("pages_text");
	
	var i = 0;
	$('.product-list').find('li').each(function(){
		if(i<4){
			i++;
		}
		else{
			i = 1;
		}
		$(this).addClass('product-' + i);
	});
	
	if($('.ExpressCheckoutBlockCollapsed .ExpressCheckoutContent').length > 0){
		$('.ExpressCheckoutBlockCollapsed .ExpressCheckoutContent').hide();
	}
	
	if($('a#inline').length > 0){
		$("a#inline").colorbox({width:"50%", height:"70%", inline:true, href:"#review-data"});		
	}
	
	if($('#gallery-page, .media-holder').length > 0){
		$("a[rel='gallery']").colorbox();
	}
	
	if($('#slide-nav').length > 0){
		$('#slide-nav').vTicker();
	}
	
	//Accordion for shop menu
	if($('.category-list').length > 0){    
		$('.category-list > ul > li > a').addClass('category-parent');

		$(document).ready(function () {

			var i = 0;
			$('.category-list').children('ul').each(

			function () {
				i++;
				$(this).children('li').attr("id", "menu-" + i);
				$(this).children('li').children('ul').hide();
				
				var menuitem = $(this).children('li');
				var hreflink = $(menuitem).children('a').attr('href');
				$(menuitem).children('ul').append('<li><a href="'+hreflink+'">Show All</a></li>');
			});
			// set a cookie
			var cookie = $.cookie("menu");
			
			if(cookie != null) {
				$('#'+cookie).children('ul').show();
			}

		});

		$('.category-parent').click(

		function () {
			
			var checkElement = $(this).next();
			var parent = this.parentNode.parentNode;

			if ($(parent).hasClass('noaccordion')) {
				$(this).next().slideToggle('normal');
				return false;
			}
			
			if ((checkElement.is('ul')) && (checkElement.is(':visible'))) {
				if ($(parent).hasClass('collapsible')) {
					$(checkElement).slideUp('normal');
				}
				return false;
			}
			
			
			if ((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				
				$('.category-list').children('ul').each(

				function () {
					if ($(this).children('li').children('ul').is(':visible')) {
						$(this).children('li').children('ul').slideUp('normal');
					}
				});

				checkElement.slideDown('normal');
				
				$.cookie("menu",""+this.parentNode.id);
				
				return false;
			}
			
			

		});
	}
});
