//****************************************** METODY *****************************************************************

//*************************************** J Q U E R Y ****************************************************************
$(document).ready(function() {

	
 	addBanner("/public/Banner/mojezatvoje.swf",240,400,"div.banner");
	
 	
});


function addBanner(url,width,height,element){
    html = '<embed wmode="transparent" width="'+width+'" height="'+height+'" quality="high" name="mymovie" id="mymovie" style="" src="'+url+'" type="application/x-shockwave-flash"/>';
    $(element).append(html);
                
}

