/*
 * *****************************
 * @description		custom js
 * @author			coma ag | jue
 * @date			2009-11
 * @copyright		2009 coma ag
 * @link			http://www.coma.de
 * *****************************
 */

function openPopup(url) {
    popup = window.open(url, 'Popup', 'width=976,height=450,resizable=yes,scrollbars=yes');
    popup.focus();
    return false;
}

$(document).ready(function(){

	$('ul.menu li a')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -36px)"}, 
			{duration:350})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:500})
		})
	
		
});