hs.graphicsDir = '/fileadmin/templates/jsw/js/highslide/graphics/';
hs.outlineType = 'rounded-white';
hs.wrapperClassName = 'draggable-header';


$(document).ready(function() {
	$('div.menu ul li a')
//		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			if(!$(this).hasClass('active')) {
				$(this).stop().animate({backgroundPosition:"(0 -250px)"}, {duration:500})
			}
		})
		.mouseout(function(){
			if(!$(this).hasClass('active')) {
				$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500})
			}
		});
	
	$('div.news-list-container a').click(function() {
		$(this).attr('href', $(this).attr('href')+'&type=5000');
		return hs.htmlExpand(this, { objectType: 'ajax', width: 680})
	})
	
});

