/**
 * @Copyright CSSJockey - Web Design and Development
 * @Website: http://www.cssjockey.com
 * @Terms of Use: http://www.cssjockey.com/terms-of-use
 * If you change the contents below sky will fall on your head!
 */
$(document).ready(function(){
	$('.fthumb').click(function(){
		var tid = $(this).attr('id');
		$(".fpost").fadeOut(100);
		$(".f"+tid).fadeIn(500);
		return false;
	})

	$('#hpanelholder').cycle({ 
	    fx:     'fade', 
	    speed:  500, 
	    timeout: 0, 
	    next:   '#hnext', 
	    prev:   '#hprev' 
	});
})
