var bild_webdesign = new Image();
bild_webdesign.src = 'fileadmin/templates/img/block_webdesign_hover.jpg';

var bild_blog = new Image();
bild_blog.src = 'fileadmin/templates/img/block_blog_hover.jpg';

var bild_handy = new Image();
bild_handy.src = 'fileadmin/templates/img/block_handy_hover.jpg';

var bild_marketing = new Image();
bild_marketing.src = 'fileadmin/templates/img/block_marketing_hover.jpg';

var bild_sub = new Image();
bild_sub.src = 'fileadmin/templates/img/sub_mitte_hover.jpg';

var bild_suboben = new Image();
bild_suboben.src = 'fileadmin/templates/img/sub_oben_hover.jpg';

var bild_subunten = new Image();
bild_subunten.src = 'fileadmin/templates/img/sub_unten_hover.jpg';


$(document).ready(function() {
	$('#meinung_alt').css('display', 'none');
	$('#meinung').css('display', 'block');
	$('#meinung').cycle({
		fx: 'fade',
		timeout: 9000,
		speed: 400,
		delay: -2000
	});
	
	$('#twitter_btn').toggle(
		function() {
			$('#meinungen').fadeOut(200);
			$('#twitter').animate({top: 0}, 400);
			return false;
		},
		function() {
			$('#twitter').animate({top: '-108px'}, 400);
			$('#meinungen').fadeIn(600);
			return false;
		}
	);
	
	if (document.URL != "http://www.der-online-profi.de/webdesign/" && document.URL != "http://www.der-online-profi.de/webdesign/ist-ihre-seite-aelter-als-2-jahre/" && document.URL != "http://www.der-online-profi.de/webdesign/content-management-system/" && document.URL != "http://www.der-online-profi.de/online-shop/") {
		$('#webdesign').hover(
			function() {
	
				$('#webdesign').css('background-image', 'url(fileadmin/templates/img/block_webdesign_hover.jpg)');
			},
			function() {
	
				$('#webdesign').css('background-image', 'url(fileadmin/templates/img/block_webdesign_default.jpg)');
			}
		);
	}
	
	$('#webdesign').click (
		function() {
			location = '/webdesign/';
		}
	);

	if (document.URL != "http://www.der-online-profi.de/webblog/") {
		$('#blog').hover(
			function() {
	
				$('#blog').css('background-image', 'url(fileadmin/templates/img/block_blog_hover.jpg)');
			},
			function() {
	
				$('#blog').css('background-image', 'url(fileadmin/templates/img/block_blog_default.jpg)');
			}
		);
	}
	
	$('#blog').click (
		function() {
			location = '/webblog/';
		}
	);	
	
	if (document.URL != "http://www.der-online-profi.de/webdesign-handy/") {
		$('#handy').hover(
			function() {
	
				$('#handy').css('background-image', 'url(fileadmin/templates/img/block_handy_hover.jpg)');
			},
			function() {
	
				$('#handy').css('background-image', 'url(fileadmin/templates/img/block_handy_default.jpg)');
			}
		);	
	}
	
	$('#handy').click (
		function() {
			location = '/webdesign-handy/';
		}
	);
	if (document.URL != "http://www.der-online-profi.de/online-marketing/") {
		$('#marketing').hover(
			function() {
	
				$('#marketing').css('background-image', 'url(fileadmin/templates/img/block_marketing_hover.jpg)');
			},
			function() {
	
				$('#marketing').css('background-image', 'url(fileadmin/templates/img/block_marketing_default.jpg)');
			}
		);		
	}
	
	$('#marketing').click (
		function() {
			location = '/online-marketing/';
		}
	);
});

