// JavaScript Document
var $j = jQuery.noConflict();

$j(document).ready(function() {   
	
	$j(".post_image").prependTo("#content").wrap('<div class="post-image-wrap"></div>').show();
	$j(".cat-item a").removeAttr("title");
	
	$j('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		prev:   '#prev', 
    	next:   '#next', 		
		speed:	1000, 
		pause:   1,     // true to enable "pause on hover" 
		slideExpr:	'.slide'
	});

	
	
	
});
