/*
*
*	SCRIPT FOR H1 WIDTH LIMIT
*
*/

$("document").ready(function() {
   
   currentWidth = $(".mainContent").find("h1:first").width();
      
   if(currentWidth >= 575)
   {
        $(".mainContent").find("h1:first").css("background-position", "right 25%");
        $(".mainContent").find("h1:first").css("margin-bottom", "10px");
   }
   
   /* for ie  */
   if(navigator.appName == "Microsoft Internet Explorer" && currentWidth >= 467)
   {
        currentHeight = $(".mainContent").find("h1:first").height() + "px";
        
        $(".mainContent").find("h1:first").css("background-position", "right 25%");
        $(".mainContent").find("h1:first").css("margin-top", "-80px");
        
        $(".centerRight").find(".h1Line").css("margin-top", "-64px");
        
        $(".mainContent").css("padding-top", "50px");
   }

});

