/*
 * Ein Video im Head einbinden
 * im Moment nur für die Startseite und festverdrahtet.
 *
 */

jQuery(function($) {
	
	$('#headimg').append('<div id="flashvideo"></div>');
	$('#flashvideo')
	.css({
		width: '344px',
		height: '200px',
		position: 'absolute',
		right: 0,
		top: '3px',
		overflow: 'hidden'
	})
	.flash({
		src: 'fileadmin/template/videos/aberdeen.swf',
		width: '355px',
		height: '200px'
	})
	.find('embed').css({
		marginLeft:'-6px'
	});
	
});