/*

--------------------------------------------------------->8---

AUTHOR		g madison / ohsoso.com
CLIENT		studentpriset
VERSION		1.2 

--------------------------------------------------------------

*/

document.documentElement.className += " js";
	
$(document).ready(function(){

		// NAVIGATION COOKIE LOAD

		var viewType = $.cookie('viewType');
	
		if (viewType == null) {
				$('#navigation').hide();
		} else if (viewType == 'off') {
				$('#navigation').hide();
		} else {
				$('#navigation').slideDown(200);
				$('.browse').removeClass('down').addClass('up');
		}

		// NAVIGATION CLICK
	
		$('.browse').click(function() {
				$('#navigation').slideToggle(200);
				if ($(this).hasClass('down')) {
						$(this).removeClass('down').addClass('up');
						$.cookie('viewType', 'on', {path: "/"}, {expires: 21});
				} else {
						$(this).removeClass('up').addClass('down');
						$.cookie('viewType', 'off', {path: "/"}, {expires: 21});
				}
		});
	
		// YOUTUBE LOAD VIDEO
		
		$('#mov_gala_href a').click(function() {
				var src_gala = $(this).attr('href').replace('http://www.youtube.com/watch?v=', 'http://www.youtube.com/embed/');
				$('#mov_gala').attr('src', src_gala);
		return false;
		});
				
		$('#mov_stu_href a').click(function() {
				var src_stu = $(this).attr('href').replace('http://www.youtube.com/watch?v=', 'http://www.youtube.com/embed/');
				$('#mov_stu').attr('src', src_stu);
		return false;
		});

		// SHARE TEXT
		
		$('#icons img').hover(function () {
				$('#icons p').html(this.alt);
		}, function(){
				$('#icons p').html('');
		});
	
		// SEARCH FORM 
		/*
	
		$('#headersearch').mouseenter(function() {
				if ($('.search').val() == 'Sök') {
						$(this).val('').addClass('.sactive').focus();
				}
		});
		
		$('#headersearch').mouseleave(function() {
				if ($(this).val() == '') {
						$(this).val('Sök').removeClass('.sactive').blur();
				}
   		}); */

return false;

});
