	var isIE  = (navigator.appVersion.indexOf('MSIE') != -1 && navigator.userAgent.indexOf('Opera') == -1);
	var page = "";
	$(document).ready(function(){
		//tooltip
		$(".tooltip")//.html("bottomMiddle") // Set the links HTML to the current opposite corner
            .qtip({
               content: $(this).attr("alt"), // Set the tooltip content to the current corner
               hide: {
            		fixed: true // Make it fixed so it can be hovered over
         		},
         		show: { solo: true,ready: false },
               position: {
                  corner: {
                     tooltip: "bottomLeft", // Use the corner...
                     target: "topRight" // ...and opposite corner
                  }
               },
               

               style: {
                  border: {
                     width: 1,
                     radius: 2,
                     color:'#62BB46'
                  },
                  color:'#fff',
                  background:"#62BB46",
                  padding: 0, 
                  textAlign: 'center',
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'green' // Style it according to the preset 'cream' style
               }
            });
        //$(".tooltip").qtip("hide");
        
        //$(".tooltip").qtip("focus");
		if(!isIE)
		{
			
		}else
		{
		}
	});	
	function showToolTip(objElement)
	{
	}
