$(document).ready(function() {

	$("#logo").fadeIn(500);
	$('#portfolio div.textwidget').fadeIn(2000);
	$('#portfolio div.textwidget').innerfade({
			speed: 1500,
			timeout: 4000,
			type: 'random',
			containerheight: '250px'
	});

	$('.framSlide').fadeIn(2000);
	$('.framSlide div.textwidget').innerfade({
			speed: 1500,
			timeout: 5000,
			type: 'random',
			containerheight: '250px'
	});	

	$('.framSlide2').fadeIn(2000);
	$('.framSlide2 div.textwidget').innerfade({
			speed: 1500,
			timeout: 6000,
			type: 'random',
			containerheight: '250px'
	});	

	
	// easy toggle for categories
	$('#triggerCatID').click(function() {
		$(this).toggleClass('focus');
		$('#headerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerCatID2').click(function() {
		$(this).toggleClass('focus');
		$('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	
	//Menu for shop
	/*
	$(".page-item-490").append($(".subProdMenu"));
	
	$(".page-item-490").mouseover(function() {
		$(this).find(".subProdMenu").show();
	});
	
	$(".subProdMenu").mouseout(function(){
		$(this).hide();
	});
	*/

});


