$( function() {

  	/*live. popup external links biar gak perlu pake target new atau blank  biar valid xhtml
  	$("#fixed a[href^='http://']").not("a[href^='http://blog.tempointeraktif.com']").not("a[href^='http://www.blog.tempointeraktif.com']").click(   function(){
        window.open(this.href,'external');
        return false;
        });
	*/
	//toggle padding page kalo ada banner
	$("a.closebanner1").click(function(){
  	$("div#bannertop").fadeOut("1200");
  	$("div#page").css({padding:"5px 0 50px"});
  	$(this).remove();
 	 });
	
	$("a.closebanner2").click(function(){
  	$("div#bannerbot").fadeOut("1200");
  	$(this).remove();
  	});

});//functions closed

