$(function() {

  // Init Slideshow
  $('#main').css('margin-top', '200px');
  $('#col3_content').append('<p id="visual"><span></span></p>');
  
  var html_images = '';
  var max_image = '2'; // Anzahl der Images! 
  var theme = 'home'; // Default 
  
  // existiert das Meta-tag?
  if ($('meta[name=theme]').length > 0) {
    theme = $('meta[name=theme]').attr("content"); 
  } 
  
  var html_images = '';
  for (var i=1; i<=max_image; i++) {
    html_images += '<img src=\"uploads/slideshow/visual.' + theme + '.00' + i + '.jpg\" />'
  }

	 $('#visual span').append(html_images).cycle({
	 	 timeout: 5000,
		 speed: 3000
	 });
});