
$(document).ready(function(){

	$('.member-logo').mouseover(function(){
		if($(this).next().hasClass('description')){
			$(this).next().children(':first').stop().animate({left: '0px'});	
			$('.description').css('width', '420px');
		}
	});
	$('.member-logo').mouseout(function(){
		if($(this).next().hasClass('description')){
			$(this).next().children(':first').stop().animate({left: '-420px'});	
			$('.description').css('width', '0px');
		}
	});
	
	if(USER_ID == ''){
		$('.addUrl').hide();
	}
	
	$('a[rel=twitter]').twitter();
	
	$('#search_field').focus(function(){
		if( this.value == 'Seite durchsuchen...' ) {
			this.value = '';
		}
	});
	$('#search_field').blur(function(){
		if( this.value == '' ) {
			this.value = 'Seite durchsuchen...';
		}
	});
	
	
	$('#sel_trade').change(function(){
		$('#tradeFilterForm').submit();
	});
	
	$('.ce_gallery a').fancybox({
		titleShow: false
	});

});


function logout(){
	$('#hiddenlogout').submit();
}

$(window).load(function(){
	
	$("a[href$='.pdf']").addClass("file-pdf");
	$("a[href$='.doc']").addClass("file-doc");
	//$("a[href$='.xls']").addClass("file-xls");
	$("a[href$='.zip']").addClass("file-zip");
	
	
	var myDomain = window.location.host.toLowerCase();
	
	$("a[href^='http:']").not("[href*='"+ myDomain + "']")
		.addClass("external")
		.attr('target', '_blank');
		
	$("a[href^='mailto:']").addClass('external');

	
})

