jQuery(document).ready(
	function(){
		jQuery('#pagination li a:contains(›),#pagination li a:contains(‹)').addClass('btn');
		jQuery('#pagination li a:contains(›)').text('Next >');
		jQuery('#pagination li a:contains(‹)').text('Prev <');
		jQuery('#pagination li a:contains(»),#pagination li a:contains(«)').css({'display':'none'});
		
		/*
		if(jQuery('body:not(:has(".attachment"))')){
			jQuery('.two-columns').columnize({width:310});
		}
		
		
		*/
		jQuery('.four-columns').columnize({columns:4});
		/*
		jQuery('.feature-image .txt').each(function(){
		h= jQuery(this).height();
		ph=jQuery(this).parent().height();
		m=parseInt((ph-h)/2);
		jQuery(this).css({'top':m});
	})*/
	
	$('.feature-image img').load(function(){
		var temp =jQuery('.feature-image .txt')
		h= jQuery(temp).height();
		ph=jQuery(temp).parent().height();
		m=parseInt((ph-h)/2);
		jQuery(temp).css({'top':m});
	})
	/*var hg=0;
	jQuery('.three-boxes .txt-box').each(function(){
		if($(this).height()>hg){
			hg=$(this).height();
			
		}
	})
	jQuery('.three-boxes .txt-box').height(hg);
	var hgb=0;
	jQuery('.three-boxes .box').each(function(){
		if($(this).height()>hg){
			hg=$(this).height();
		}
	})
	$('.three-boxes .box').height(hgb);*/
	
	jQuery('.policies-drop .col-holder a').each(function(){
		var t=$(this).text();
		$(this).children().replaceWith(t);
		$(this).unwrap().wrap('<li>');
	})
	jQuery('.policies-drop .col-holder').wrapInner('<div class="col"><ul>');
	/*jQuery('.nav .col-holder a h4').each(function(){
		if($(this).text()=='menu-holder'){
			$(this).parent().remove()
		}
	})*/
	
	//jQuery('.nav .col-holder a h4').text('menu-holder').remove();
	
	
	
	}
	
)

