Cufon.replace('h1' , { fontFamily: 'NeoTech' } );
Cufon.replace('h2' , { fontFamily: 'NeoTech' } );
Cufon.replace('h3' , { fontFamily: 'NeoTech' } );
Cufon.replace('h4' , { fontFamily: 'NeoTech' } ); 
 
 jQuery().ready(function(){
  // simple accordion
  	if ( ('#list1b').length > 0 )
  	{
	    jQuery('#list1b').accordion({
		header: '.listbaslik',
		active: '.selected',
		autoheight: false,
		alwaysOpen: false
		});
	}
  	if ( ('#list1a').length > 0 )
  	{
		jQuery('#list1a').accordion();
	}
	
	$(".headerList td:last a").css({border: 'none'});
  
  // bind to change event of select to control first and seconds accordion
  // similar to tab's plugin triggerTab(), without an extra method
  var accordions = jQuery('#list1a, #list1b');
  
  jQuery('#switch select').change(function() {
   accordions.accordion("activate", this.selectedIndex-1 );
  });
  jQuery('#close').click(function() {
   accordions.accordion("activate", -1);
  });
  jQuery('#switch2').change(function() {
   accordions.accordion("activate", this.value);
  });
  jQuery('#enable').click(function() {
   accordions.accordion("enable");
  });
  jQuery('#disable').click(function() {
   accordions.accordion("disable");
  });
  jQuery('#remove').click(function() {
   accordions.accordion("destroy");
   wizardButtons.unbind("click");
  });
  
 });
 
 function yazdir() {
var adresAl = "/print.aspx" + window.location.href.substring(window.location.href.indexOf('?'));
window.open(adresAl,'TellUs','toolbar=no,titlebar=yes,width=750,height=600,scrollbars')
}

