$(function() { 
	var showAdvert = false; // set to true if you want the advert popup to display.
	var cookie_name = '__advert1';// change the name for each new advert you place....keep the __ prefix.

	var he_cont=$('#content_top').height();
	var he_left=$('.left_big_box').height();
	if (he_cont>he_left) {
		var roznica=he_cont-he_left+76;
		t = document.createElement('div');   
        $(t).attr("class","fill").css("height",roznica+"px"); 
        $('.left_big_box').children(':last-child').after(t);
	}

	// initialise the carousel.
	$.getJSON("json/carousel.json", function(data) {
		$(document).ready(function(){
			$("#slideshow").agile_carousel({
				carousel_data: data,
				carousel_outer_height: 250,
				carousel_height: 250,
				slide_height: 252,
				carousel_outer_width: 669,
				slide_width: 669,
				transition_time: 1000,// modify here....1000 = 1 sec
				timer: 4000,// time between slides....4000 = 4 secs
				continuous_scrolling: true,
				control_set_1: "numbered_buttons",
				no_control_set: "hover_previous_button,hover_next_button"
			});
		});
	});
	if (showAdvert && !$.cookie(cookie_name)) {
		// initialise the colorbox.
		$("#advert").colorbox({inline:true});
		setTimeout(function() {
			$('#advert').click();
			$.cookie(cookie_name, '1');
		}, 500);	
	}

});
