function ogenglow(){  
			$("#ogen").animate({opacity:".1"},2000).animate({opacity:"1"},2000);  
			setTimeout("ogenglow()",3000);  
		} 

$(document).ready(function() {  
	setTimeout("ogenglow()",300);  
}); 

$(document).ready(function() {
	$('#smartdemo3').smart3d({
					});
});
	
	/*		
$(document).ready(function() {
            var settings = {
                progressbarWidth: '200px',
                progressbarHeight: '5px',
                progressbarColor: '#d2b01e',
                progressbarBGColor: '#2384ba',
                defaultVolume: 0.8
            };
            $(".player").player(settings);
        });
		*/



$(document).ready(function(){
    var body_width;
    var timer;
    var cloud_width;
    jQuery(function($) {
            timer = setTimeout(Cloud, 0);
    });

    function Cloud() {
        //get the width of the body
        body_width = $("body").width();
        cloud_width = -$('#wolk').width();
        $("#wolk").css({marginLeft:cloud_width}).
                animate({marginLeft: body_width}, body_width*20, "linear", function() {
                        timer = setTimeout(Cloud, 0);
                });
    }
});
