/** 
* Core functions for *kundnamn* 
* 
* @copyright Osynlig AB 
* @author Namn 
* @version $Id$
**/

/**
* Fyll i variabler declarerade i andra filer på detta sätt ( komma separerade ): foo: true, bar: false. 
* True == Globalen används i dokumentet, False == Den används inte.
*/

/*global */ 


var core = {
	
	/**
	* Init function
	*
	* @constructor
	*/
	
	init : function() {
		
		this.globals();
	
	},
	
	/**
	* Global functions for the site
	*/
	
	globals: function() {
		
		$('#begLink').click(function(){
			window.location = "http://shop.northbike.se/begagnat.html";
		});
		
	}
	
	/**
	* The rest of the magic.
	*/
	
};

jQuery(document).ready(function($) {
	core.init();
});




