$(document).ready(function(){
	//HOMEPAGE SLIDER	
	$("#slides").cycle({
		speed:  'slow', 
		timeout: 6000, 
		pager:  '#controls', 
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#controls li:eq(' + idx + ') a'; 
			$('#controls li:eq(' + idx + ') a').addClass('active');
		}
	});
	
	$('#nav ul').append('<li class="bottom"></li>').prepend('<li class="top"></li>');
	
	

	/*//FIX PIC ON SERIE PAGE
	var width = $('#serie-page a img.series-icon-').width();
	var height = $('#serie-page a img.series-icon-').height();
	var newWidth = 600;
	var newHeight = (height * newWidth) / width;
	
	alert('width:'+width+'height:'+height+'newWidth:'+newWidth+'newHeight:'+newHeight);
	
	$('#serie-page a img.series-icon-').width(newWidth);
	$('#serie-page a img.series-icon-').height(newHeight);*/
	
	
	//PRETTYPHOTO
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	
	//DELETE TEXT IN SEARCH
	$('input.search_field').focus(function() {
		if( $(this).val() == "site search..." ) {
			$(this).val('');
		} else {
			$(this).val() == "site search...";
		}
	});
	$('input.search_field').blur(function() {
		if( $(this).val() == "" ) {
			$(this).val("site search...");
		}
	});
	
	
});


Cufon.replace('ul#nav li a, #content .post .meta', { hover: true } );
Cufon.replace('body#home-page h3, #content h3, #content h2, #sidebar h4, #comments_wrap h4, #respond h4');

$('#footer, #content, #sidebar').corner('4px');


