function css() {


	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
		
			$('#nav li:first-child, #footer ul li:first-child').addClass('first-child');
		
			//if($('body').is('.home')){
				
				img = $('#featured-img img').attr('src');
				$('#featured-img img').hide();
				$('#featured-img').css({filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+img+"', sizingMethod='image')"})
			//}
					
			
		}
		
		$('hr.separator').wrap('<span class="separator"></span>');
	}
	
	$('.mod-stats a, .gm-link').attr('target','_blank');
	
	if($("*").index( $('#mod-address')[0]) != -1){
		var email = $('#mod-address em[title=mail] span').html();
			email = email.replace('[at/]','@'); 
		$('#mod-address em[title=mail] span').html('<a href="mailto:'+email+'>'+email+'</a>');
	}
	
	$('.cs-list .item-4').after('<li class="divider"></li>');

	$('#mod-video a').each(function(v){
		$attr_rel = $(this).attr('rel');
		if($attr_rel == '_blank')
			$(this).attr('target',$attr_rel);
		if($attr_rel == 'pop-up')
			$(this).addClass($attr_rel);
			

		
	});
	
	$('.pop-up').fancybox({
			'padding'			: 0,
			'autoScale'     	: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none'

		}); 		
		
	$('a.fb').fancybox({
		'padding': 0,
		'imageTitle': true,
		'imageScale': false,
		'zoomOpacity' : true,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'centerOnScroll': false
	}); 
	
	$('#mod-map .fb-map').fancybox({
		'padding': 0,
		'imageTitle': false,
		'imageScale': false,
		'zoomOpacity' : true,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'centerOnScroll': false
	}); 	
		
	
}

$(document).ready(css);