

function redirect(path) {
  window.location = path;
  return false;
}

function toggle_lang() {
	//alert("hej");
  /*if(Cookie.get('lang')=="en") {
    //alert('switching to swedish');
    Cookie.set('lang','sv',60*60*24*30);
  } else {
    //alert('switching to english');
    Cookie.set('lang','en',60*60*24*30);
  }
  
  //alert("hello");
  window.location.href=window.location.href;
  
  test=$('lang_link');
  test.href=window.location.href;
  window.location.reload();
	*/
	
	if($.cookie("lang")=="en") {
    //alert('switching to swedish');
    $.cookie("lang","sv",{ expires: 14 });
  } else {
    //alert('switching to english');
    $.cookie("lang","en",{ expires: 14 });
  }
  
  //alert("Current lang is:"+$.cookie("lang"));
  window.location.href=window.location.href;
  
  $("#lang_link").attr("href",window.location.href);
  window.location.reload();
	  
  return false; 
}

function set_flag() {

 if($.cookie("lang")=="en") {
 		//alert($("#flag"));
    $("#flag").attr("src","images/sv.gif");
  } else {
    $("#flag").attr("src","images/en.gif");
  }
  
  
}








