$(document).ready(function(){
	// ++++++++++++++++++++++++++++++++++++++++
	// Bookmarks Layer ein- und ausblenden
	// ++++++++++++++++++++++++++++++++++++++++
	$('.bookmarks').click(function() {
		if ($('#social_bookmarks').is(":hidden") ) {
			$('#social_bookmarks').fadeIn("200");
		} else {
			$('#social_bookmarks').fadeOut("200");
		}
	});
	$('#sb_close').click(function() {
		$('#social_bookmarks').fadeOut("200");
	});
	
	
	// ++++++++++++++++++++++++++++++++++++++++
	// Define Fancybox
	// ++++++++++++++++++++++++++++++++++++++++
	
	$('a.fancy_inline').fancybox();
	
	$("a.fancy_gallery").fancybox({
		'hideOnContentClick': false
	});
	
	
	
	// ++++++++++++++++++++++++++++++++++++++++
	// Focus Outline von Links entfernen
	// ++++++++++++++++++++++++++++++++++++++++
	$('a').focus(function() {
		this.blur();
	});
	
	
	// ++++++++++++++++++++++++++++++++++++++++
	// Hover-Effect fuer Submit-Buttons
	// ++++++++++++++++++++++++++++++++++++++++
	$("input[type='submit']").hover(
		function () {
			$(this).css(
				{backgroundPosition: '0 -37px'}
			);
		},
		function () {
			$(this).css(
				{backgroundPosition: '0 0'}
			);
		}		
	);
	
});