/* Include Files */
$(document).ready(function(){
	$(function () {
	$("#TopBan").load("/header.html");
	$("#rightnav").load("/rightmenu.html");
	$("#rightnav_home").load("/rightmenu_home.html");
	$("#footerout").load("/footer.html");
	});
});

/* show hide starts */
function showonlyone(thechosenone) {
      var newboxes = document.getElementsByTagName("div");
            for(var x=0; x<newboxes.length; x++) {
                  name = newboxes[x].getAttribute("name");
                  if (name == 'uniquename') {
                        if (newboxes[x].id == thechosenone) {
                        newboxes[x].style.display = 'block';
                  }
                  else {
                        newboxes[x].style.display = 'none';
                  }
            }
      }
}


$(document).ready(function()
{
	$(".close").click(function()
		{
			$(".sugg_box").fadeOut('slow');
		});
});
$(document).ready(function(){
       $('a[href=javascript:void(0)]').click(function(event){
       });
     });


/* show hide ends */

