﻿
$(function() {
    
    /*
    $('.mysites').mysites();
    $('.register').register();
    $('#feedback').feedback();
    $('.eventstats').rsvp();
    $('.comments').comments();
    */
    
	$("#search input").keydown(function(e){
		if(e.keyCode == 13) {
            location.href = "/sok.aspx?q=" + encodeURIComponent($(this).val());			
			return false;
        }
	});    
	
	
    //$(".comment-form input.text").hint();
    //$('.comment-form input.text, #feedback input, #feedback textarea').hint();
    //$('#feedback textarea').hint();


	//------------ Warren: New code for Velforbundet 19/11/09 -----------------------

	//Facebook share link
	$("a.facebook-link").click(function() {
	    var url = $(this).attr("href");
	
	    window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
	    
	    //Make sure the original <a> link url is not activated
	    return false;
	});

	//Print link
	$("a.print-link").click(function() {
	    var url = $(this).attr("href");

	    window.open(url, 'print', 'menubar=1,scrollbars=1,toolbar=1,status=0,width=800,height=600');

	    //Make sure the original <a> link url is not activated
	    return false;
	});

});




