$(function(){
	//SEARCH INPUT
	var focused = false;
	
	$('#page-search form').hover(function(){
		$(this).addClass('active');
	}, function(){
		if (focused == false) {
			$(this).removeClass('active');
		}
	});
	
	$('#page-search input').focusin(function(){
		$(this).val('').add().parent().addClass('active');
		focused = true;
	});
	$('#page-search input').focusout(function(){
		$(this).val('Search').add().parent().removeClass('active');
		focused = false;
	});

	//PRODUCT DETAIL TABS
	$('.tab-box .tab-content').hide();
	$('.tab-box .tab-content:first').show();
	$('.tab-box .tabs ul li:first').addClass('active');
	
	$('.tab-box .tabs ul li a').click(function(){
		$('.tab-box .tabs ul li').removeClass('active');
		$(this).parent().addClass('active');
		
		var currentTab = $(this).attr('href');
		$('.tab-box .tab-content').hide();
		$(currentTab).show();
		return false;
	});

	//IMAGE GALLERY
	$('.large').not(':first').hide();
	$('.thumb:first').addClass('active');
	
	$('.thumb').click(function(){
		var index = $(this).index();
		$('.thumb').removeClass('active');
		$(this).addClass('active');
		$('.large').hide().eq(index).show();
	});
	
	//UNIFORM FORM STYLES
	$(function(){
		$("#content input, #content textarea, #content select").uniform();
	});
	
	//File lightbox
	if ($('.lightbox').length !== 0) {
		$(".lightbox").fancybox();
	}
	
	//Homepage slideshow
	$('#hero .container').cycle({ 
    	speed: 1000, 
    	timeout: 5000
	});
});
