$(document).ready(function(){
	if (window.parent.location.href == location.href) location.href = 'http://twochips.com/index.html?'+location.href;
	$('#menu2>ul>li').hover(
		function() {
			$(this).css('background-color','gray').css('color','white').find('a').css('color','white');
		},
		function() {
			$(this).css('background-color','#f3f3f1').css('color','black').find('a').css('color','black');
		}
	);
});
