// tomkruk.com javascript file

// init jQuery
$(document).ready(function() {
	//initTest();
   		
});
//------------------------------

// ====== jQuery Functions ========= //
function initTest(){
	$("a").click(function() {alert("This is a seperate file");});
	
}
