// JavaScript Document
	  $(document).ready(function(){
	$(".voip_downloads a").mouseover(function(){
      $(this).animate({ 
					  opacity: 0.5
		}, 200 );
    });
    $(".voip_downloads a").mouseout(function(){
      $(this).animate({ 
					  opacity: 1
		}, 300 );
    });	
 //end homepage
 //plans
    $(".left_bar li a").mouseover(function(){
	
      $(this).animate({ 
					  opacity: .5
		}, 200 );
    });
	
    $(".left_bar li a").mouseout(function(){
      $(this).animate({ 
					  opacity: 1
		}, 300 );
    });
//endplans

 //topmenu
    $(".top_prom_menu a").mouseover(function(){
	
      $(this).animate({ 
					  opacity: .5
		}, 200 );
    });
	
    $(".top_prom_menu a").mouseout(function(){
      $(this).animate({ 
					  opacity: 1
		}, 300 );
    });
	
	$("a.my_account").mousedown(function(){

		$(".float_account").show("slow");

    });
	$("a._close").mousedown(function(){
		$(".float_account").hide("slow");

    });
//topmenu	
	
  });
//google analitics

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
// end google analitics
