﻿// Functions specific to a site.

$('a[rel]').overlay({
	mask: '#000',
	closeOnClick: true,
	fixed: false,
	closeOnEsc: true
});

(function($) {
		  
	
	$(document).ready(function() {
		$('#hukumnama .widget_text').clone().appendTo('#overlay');							   
							   
		// Place document manipulation code here
		Cufon.replace('h1, .cta-title, .subnav-title, .home h2');
		$('#subnav-header ul li:last').addClass('last-sub');
		$('#topic-column ul li:last').addClass('last-post');
		
		$('#cycle .banner')
		.before('<div id="cycle-button"><ul>') 
		.cycle({ 
			fx:     'fade', 
			speed:  '800', 
			timeout: 4000, 
			pager:  '#cycle-button ul',
			pagerAnchorBuilder: function(idx, slide) {
				var anchor = '';
				anchor = '<li><a href="#" id="btn-cycle-' + (idx + 1) + '">' + (idx + 1) + '</a></li>';
				return anchor;
			}
		});
		
		
		
	
	
	}); 
})(jQuery);


