function css() {

	/* go on for IE in generall */
	if($.browser.msie){		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
			$('#panel #props-listing li div, #hand-menu li').hover(function(){
				$(this).addClass('hover');
			},function(){
				$(this).removeClass('hover');
			});
		}
	}
	
	/* homepage: switching between blog/news posts */
	$('#hand-menu #hd-news').addClass('active');
	$('#hand-menu #hd-blog').addClass('js');
	$('#hand-menu #list-blog').hide();
	$('#hand-menu #hd-blog, #hand-menu #hd-news').click(function(){
		$(this).siblings('h3').removeClass('active');
		$(this).addClass('active');
		$(this).siblings('ul').hide();
		$(this).next('ul').show();
	});
	
	$('#hand-menu #list-news li:last-child, #hand-menu #list-blog li:last-child, #footer ul li:last-child, .pagination li:last-child, #breadcrumbs li:last-child').addClass('last-child');
	
	$('.slider span').click(function(){
		$(this).siblings().removeClass('active');
		$(this).addClass('active');
	});
		
	$('.slider').mouseup(function(){
		$(this).children('span').removeClass('active');
		
	});
	
	
		
	
}

$(document).ready(css);