// KScripte - http://www.kristijan-solutions.com/

$j(window).resize(function(){ // ----- KAD SE PROZOR POVECAVA/SMANJUJE IZVRSI OVO -----

var bodyh = $j("body").height();
var Traka = $j("#Traka").height();

if (bodyh > Traka) {
	$j("#Traka").css( {height: bodyh} );
}

});

$j(window).load(function(){ // ----- KAD SE STRANICA UCITA IZVRSI OVO -----

var bodyh = $j("body").height();
var Traka = $j("#Traka").height();

if (bodyh > Traka) {
	$j("#Traka").css( {height: bodyh} );
}


});

$j(document).ready(function(){ // ----- KAD STRANICA BUDE SPREMNA IZVRSI OVO -----
	
	$j('body').prepend('<div style="display: none;">Hostel Podgorica - Hostel Crna Gora</div>');
	
});

