$(function(){
	
	if ($('.contenttable').length) {
		$('.contenttable tbody tr:even').addClass('even');
		$('.contenttable tbody tr:odd').addClass('odd');
	}
	
	$('a#print').
	attr('href','javascript:void(0)').
	click(function(){
		window.print();
	});
	
	if ($('form.fullSearch').length) {
		$('form.fullSearch #tx-indexedsearch-searchbox-sword').focus(function(){
			$(this).val('');
		});
	}
	
	if ($('a.thickbox[title="Imagevideo"]').length) {
		over = new Image();
		over.src = "fileadmin/user_upload/img/sdbr.movie_high.jpg";
		out = $('a.thickbox[title="Imagevideo"] img').attr('src');
		
		$('a.thickbox[title="Imagevideo"]').hover(
			function() {
				$(this).find('img').attr('src',over.src);
			},
			function() {
				$(this).find('img').attr('src',out);
			}
		);
	}
	

});