/**
 * @author spetz
 */
$(document).ready( function() {
	
	/*
	 * Fixar ajax requesten
	 */
	$('A.ajax').click(function() {
		$.get($(this).attr('href')+'/ajax', function(data){
			$('#content').empty();
			$('#content').append(data);
			$('.window').initWindow();
		});
		$(this).parent().find('A.ajax').removeAttr('id');
		$(this).attr({id:"current"});
		return false;
	});
	
	//Fixar till aktiva menyalternativ
	var path = location.pathname.substring(1);
	$('#watchesNav ul li a[@href$="' + path + '"]').addClass('active');
	
	if(path=="watches/index") {
		$('#watchesNav ul li a:first').addClass('active');
	}
	
	//Initierar fönsterfunktionen
	$(".window").initWindow();


});