$(document).ready(function(){
	
	initHomePage();
	loadNews();

// hide breadcrums on collections page
$('table.categories_path tr:eq(0)').hide();
     
$('#locationList li:eq(1) img').fadeTo('fast', 0.25);
$('#locationList li:eq(2) img').fadeTo('fast', 0.25);
$('#locationList li:eq(3) img').fadeTo('fast', 0.25);
$('#locationList li:eq(4) img').fadeTo('fast', 0.25);

	$('#locationList li a').click(function(){
		resetAllTabInfo();
		$(this).parent().addClass('activeTab');
                $(this).find('img').fadeTo('fast', 1);
		$('#locationInfol .tab:eq('+$(this).parent().index()+')').show();
                $('#locationInfol .tab').tinyscrollbar();
		return false;	
	});

	function resetAllTabInfo(){
		resetTabs();
		resetLinks();
	}

  	function resetTabs(){
  	  $('#locationInfol .tab').each(function(){
			$(this).hide();  
		});
  	}
  
  	function resetLinks(){
	  $('#locationList li').each(function(){
			$(this).removeClass('activeTab');
                        $(this).find('img').fadeTo('fast', 0.25);  
		});
	}

	function initHomePage(){
		
		$.getJSON('/sf-json.php?jsonFile=home_banners.json',function(data){
			$('.slideshow').html('');
            $.each(data.banners, function(i, banner){
				if(banner.img_url){
                    $('.slideshow').append('<a class="slide" href="'+banner.link_url+'"><img src="'+banner.img_url+'" alt="'+banner.title+'" /></a>'); //<span>'+banner.title+'</span>
                }	
			});

            $('.slideshow').cycle();
		});	
	}

	function loadNews(){
	
		$.getJSON('/sf-json.php?jsonFile=news.json',function(data){
			var newsUL = $('<ul>');
			$.each(data.news, function(i, news){
				if(news.title){
					var info1 = '';
					var info2 = '';
					var img = '';
                    if(news.info1 != ''){info1 = '<p>'+news.info1+'</p>';}
                    if(news.info2 != ''){info2 ='<p>'+news.info2+'</p>';}
                    if(news.thumb_img_url != ''){img = '<img src="'+news.thumb_img_url+'" />';}
					if(news.ctgID == 14){
						var newsHTML = '<li class="videoNews"><p>VIDEO</p><h2>'+news.title+'</h2>'+info1+info2+img+'</li>';
					}else{
						var newsHTML = '<li class="newsArticle"><h2>'+news.title+'</h2>'+info1+info2+img+'</li>';
					}				
}
				newsUL.append(newsHTML);
			});
			$('#featuredNews').html(newsUL).jcarousel({
				vertical: true,
				scroll: 2
			});
			newsUL.after('<a class="moreNews" href="/news.htm" >MORE NEWS...</a>');
		});
		
	}

        groupItems(6,('#productSlider'));
		$('#productSlider').jcarousel({
			scroll: 1	
		});

	function groupItems(size, container){
		
		var holder;
		$('#productSlider div.product').each(function(index, elem){
			if(index%size == 0){
				holder = $('<li></li>').appendTo('#productSlider');	
			}
			
			holder.append(this);	
		});
		var slideShow = $('<ul>')
		$('#productSlider li').appendTo(slideShow);
		$('#productSlider').html(slideShow);
	}

// PRESS

$("a.detailImg").fancybox();

});
