$(document).ready(function()
{
	$(".drop-down").hoverClass("hover");
	$(".drop-down > ul > li").css("opacity", 0.8).hover(
		function() { $(this).css("opacity", 1); },
		function() { $(this).css("opacity", 0.8); }
	);
	
	$("#footer .copyright").html('Copyright &copy;2007-2010 Cubitas. All rights reserved.');
	});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};
