$(function() {
	
	/* 
	 * 
	 */
	
	$('a[rel=external]').click(function(e) {
		
		open(this.href);
		
		e.preventDefault();
		
	}).attr('title', 'Opens in a new window');
	
	/* 
	 * 
	 */
	
	$('li:last-child').addClass('last-item');
	
	$('.ErrorLabelMiniLogon:empty').remove();
	
	/* 
	 * 
	 */
	
	$('#content img').each(function(e) {
		
		if ($(this).css('float') == 'left') {
			
			$(this).addClass('left').removeAttr('style');
			
		}
		else if ($(this).css('float') == 'right') {
			
			$(this).addClass('right').removeAttr('style');
			
		}
		
	});
	
	/* 
	 * 
	 */


	$('.tabs .content').hide();
	
	$('.tabs .content:first').show();
	
	$('.tabs .listing li').click(function(e) {
		
		$('.tabs .listing li').removeClass('active');
		
		$(this).addClass('active');
		
		$('.tabs .content').hide();
		
		$($(this).find('a').attr('href')).fadeIn();
		
		e.preventDefault();
		
	});

	$('.tabs .listing li:first').addClass('active');

	/***/

	$('.tabs .contentNews').hide();

	$('.tabs .contentNews:first').show();

	$('.tabs .listingNews li').click(function(e) {

	$('.tabs .listingNews li').removeClass('active');

	    $(this).addClass('active');

	    $('.tabs .contentNews').hide();

	    $($(this).find('a').attr('href')).fadeIn();

	    e.preventDefault();

	});

	$('.tabs .listingNews li:first').addClass('active');

	$('a[rel=gallerypreview]').fancybox({
	    overlayColor: '#000',
	    overlayOpacity: .7,
	    padding: 0,
	    transitionIn: 'elastic',
	    transitionOut: 'elastic',
	    type: 'iframe',
	    titleFormat    : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		},
		titlePosition  : 'outside',
		height : 370
	});
	
});
