$(function() {
	// Navigation ////////////////
		//Initialization
		$('#header ul li.active div').fadeIn();
		$('#under_' + $('#header ul li.active a span').attr('id')).fadeIn(1500);
		
		//Navigation animations
		$('#header ul li').hover(
		function() {
			$(this).children('div').fadeIn();				
		}, function() {
			if (!$(this).hasClass('active')) {			
				$(this).children('div').fadeOut();
			}
		});
		
		$('#header ul li').click(function() {
			if (!$(this).hasClass('active')) {
				$('#header ul li.active div').fadeOut();
				$('#under_' + $('#header ul li.active a span').attr('id')).hide();
				$('#header ul li.active').removeClass('active');
				$(this).addClass('active');
				$('#under_' + $(this).children('a').children('span').attr('id')).fadeIn(1500);
			}
		});
		
	//////////////////////////////////////////////////
	
	//Search button's effects
	$('input.submit').hover(function() {$(this).addClass('hover')}, function() {$(this).removeClass('hover')});
	$('input.submit').mousedown(function() {$(this).addClass('active')});	
	$('input.submit').mouseout(function() {$(this).removeClass('active')});
	
	//Opens the wizzard.bg in new tab
	$('#footer div a').click(function() {		
		window.open(this.href);				
		return false;
	});
	
	//Blink text
	$('.blink').blink({effect: 'color'})
	
	//Custom scroll
	$('.custom-scroll').jScrollPane({showArrows:true , arrowSize:13, scrollbarWidth: 13, reinitialiseOnImageLoad:true});
	
})