// JavaScript Document
google.setOnLoadCallback(function() {
	$("#nav a").hover(function() {
		$(this).animate({
			backgroundColor: "#deff3c",
			color: "#000"
		}, 100);
	},
	function() {
		if (!$(this).hasClass("sel")) {
			$(this).animate({
				backgroundColor: "#fff",
				color: "#999"
			}, 300);
		}
	});
});

function openPop(p){
  switch (p)
  {
  case "animated":
    var winl = (screen.width-666)/2;
    var wint = (screen.height-600)/2;
    window.open('pops/animated_banners/index.html', 'Popup', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=666,height=600,top='+wint+',left='+winl+'');
    break;
  case "billboard":
    var winl = (screen.width-810)/2;
    var wint = (screen.height-680)/2;
    window.open('pops/billboard/3D_OOH_for_Dell_Building.html', 'Popup', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=810,height=680,top='+wint+',left='+winl+'');
    break;
  case "first_ever":
    var winl = (screen.width-550)/2;
    var wint = (screen.height-768)/2;
    window.open('pops/first_ever_strip_banner_in_the_times/page.html', 'Popup', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=550,height=768,top='+wint+',left='+winl+'');
    break
  case "india":
    var winl = (screen.width-943)/2;
    var wint = (screen.height-780)/2;
    window.open('pops/india_brand_launch_ad/Intro_Print.html', 'Popup', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=943,height=780,top='+wint+',left='+winl+'');
    break
  case "out_of_home":
    var winl = (screen.width-820)/2;
    var wint = (screen.height-510)/2;
    window.open('pops/out_of_home/out_of_home.html', 'Popup', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=820,height=510,top='+wint+',left='+winl+'');
    break
  case "print_ads":
    var winl = (screen.width-810)/2;
    var wint = (screen.height-670)/2;
    window.open('pops/print_ads/print_ads.html', 'Popup', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=810,height=670,top='+wint+',left='+winl+'');
    break
  case "video":
    var winl = (screen.width-666)/2;
    var wint = (screen.height-600)/2;
    window.open('pops/animated_banners/index.html', 'Popup', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=666,height=600,top='+wint+',left='+winl+'');
    break;
  default:
    document.write("");
  }
}