    function clicksave() {
        document.getElementById('btnSave').click();
    }
    $(document).ready(function() {

        //rotation speed and timer
        var speed = 5000;
        var run = setInterval('rotate()', speed);

        //grab the width and calculate left value
        var item_width = $('#slides li').outerWidth();
        var left_value = item_width * (-1);

        //move the last item before first item, just in case user click prev button
        $('#slides li:first').before($('#slides li:last'));

        //set the default item to the correct position 
        $('#slides ul').css({ 'left': left_value });

        //if user clicked on prev button
        $('#prev').click(function() {

            //get the right position            
            var left_indent = parseInt($('#slides ul').css('left')) + item_width;

            //slide the item            
            $('#slides ul:not(:animated)').animate({ 'left': left_indent }, 200, function() {

                //move the last item and put it as first item            	
                $('#slides li:first').before($('#slides li:last'));

                //set the default item to correct position
                $('#slides ul').css({ 'left': left_value });

            });

            //cancel the link behavior            
            return false;

        });


        //if user clicked on next button
        $('#next').click(function() {

            //get the right position
            var left_indent = parseInt($('#slides ul').css('left')) - item_width;

            //slide the item
            $('#slides ul:not(:animated)').animate({ 'left': left_indent }, 200, function() {

                //move the first item and put it as last item
                $('#slides li:last').after($('#slides li:first'));

                //set the default item to correct position
                $('#slides ul').css({ 'left': left_value });

            });

            //cancel the link behavior
            return false;

        });

        //if mouse hover, pause the auto rotation, otherwise rotate it
        $('#slides').hover(

	function() {
	    clearInterval(run);
	},
	function() {
	    run = setInterval('rotate()', speed);
	}
);

    });

    //a simple function to click next link
    //a timer will call this function, and the rotation will begin :)  
    function rotate() {
        $('#next').click();
    }

	var hr;
			$(document).ready(function(){
				$("area[rel^='prettyPhoto']").prettyPhoto();
				
				$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({});
				$(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({});
				$("#custom_content a[rel^='prettyPhoto']:first").prettyPhoto({
					custom_markup: '<div id="map_canvas" style="width:260px; height:265px"></div>',
					changepicturecallback: function(){ initialize(); }
				});

				$("#custom_content a[rel^='prettyPhoto']:last").prettyPhoto({
					custom_markup: '<div id="bsap_1259344" class="bsarocks bsap_d49a0984d0f377271ccbf01a33f2b6d6"></div><div id="bsap_1237859" class="bsarocks bsap_d49a0984d0f377271ccbf01a33f2b6d6" style="height:260px"></div><div id="bsap_1251710" class="bsarocks bsap_d49a0984d0f377271ccbf01a33f2b6d6"></div>',
					changepicturecallback: function(){ _bsap.exec(); }
				});

			});
			
			/* TV & Klima LightBox */ 
			var linkTv =true;

			$(document).ready(function(){
			/*

			*/
			});

	
			function setLinkStatus(param){
				linkTv = param;
				if(linkTv == "televizyon"){
				    hr = "#televizyonVideo";

				} else if (linkTv == "tv") {
    				hr = "#tvVideo";
            	    $(".videoButton").show();

            	} else if (linkTv == "ecojet") {
	              $(".videoButton").hide();

	            } else {
					hr = "#camasirVideo"
				
				}
				$(".videoButton").attr("href",hr);
			}
			/* TV & Klima LightBox */
