$(document).ready(function() {

	/* fancybox, you know? */
	$('a.fancybox, a.iframe').fancybox({
		'transitionIn'			: 'elastic',
		'transitionOut'			: 'elastic',
		'hideOnContentClick'	: true,
		centerOnScroll          : true
	});

	
	$('#prodImgThumbsContainer img').click(function() {
	  
		var thisThumbID = this.id;
		var thisBigImgID = thisThumbID.replace('thumb_','img_');
	  
		$('#prodImgBigContainer img').each(function(index) {   
			
			if ( this.id == thisBigImgID){
				$(this).attr('class','show');
			}
			else{
				$(this).attr('class','hide');
			}

		});

	});	
	
	/* hide downloads Container */
	$('.ProdDownloads').hide();
	
	/* Click Event Handler to display product downloads  */
	$('#showProdDownloads').click(function() {
		$('.ProdContent').hide();
		$('#showProdContent').removeClass('active');
		$('.ProdDownloads').show();
		$('#showProdDownloads').addClass('active');
	});
	
	/* Click Event Handler to display product content text  */
	$('#showProdContent').click(function() {
		$('.ProdContent').show();
		$('#showProdContent').addClass('active');
		$('.ProdDownloads').hide();
		$('#showProdDownloads').removeClass('active');
	});
	
	
	/* Content Slider used in product detail site */
	/* check first if id existst otherwise we have an js error!!! */
	if ($("#scrollbar").length > 0){
    	$('#scrollbar').tinyscrollbar();
	}
	
});
