jQuery(document).ready(function($) {
	
	// Tabs (temp)
	$('.tabs-content').hide();
	$('.tabs:not(.static) .active a').each(function() {
		$($(this).attr('href')).show();	
	});
	
	$('.tabs:not(.static) li a').click(function() {
		$(this).parents('.tabs').find('li').removeClass('active');
		$(this).parent().addClass('active');
		
		$(this).parents('.tabs-container').find('.tabs-content').hide();
		$($(this).attr('href')).fadeIn('fast');
		
		return false;
	});

	// Search
	$('#header input').clear_input();

	// Forms
	$('.forms select').chosen();

	// News
	$('.news li').click(function() {
		var URL = $(this).find('a').attr('href');

		window.location = URL;
	});

	$('.news li').hover(
		function() {  
			$(this).find('a').css('text-decoration', 'none');
			$(this).find('.photo').css('border-color', '#F31C01');
		},
		function() {  
			$(this).find('a').css('text-decoration', 'underline');
			$(this).find('.photo').css('border-color', '#cfd0cf');
		}
	);
	
});
