jQuery.noConflict();

jQuery(document).ready(function($) {
$('#main1').cycle({
	fx: 'fade',
    timeout: 10000,  //time between transitions
    speed: 500,    //transition time
    delay: 0,       //additional first slide up time
	next: '#main1', 
    pause: 1
}); 

$('.count').each(function () {
	var c = $(this).text();
	if (c < 10) {
		$(this).text("0" + c);
	}
						   });

$('#navigationWrap .inactive').hover(
	function() {
		var s = $(this).attr('src');
		s = s.replace(/.png/, 'Hov.png');
		$(this).attr('src',s);},
	function() {
		var s = $(this).attr('src');
		s = s.replace(/Hov/, '');
		$(this).attr('src',s);}
		);

$('#blogNav ul li:first').next().css('display','none');

var pNL = $('.previousNext a');
var pNLU = pNL.attr('href');
pNLU = pNLU + '#subsub';
pNL.attr('href',pNLU);
						   
});//ready