$(document).ready(function(){
	$('.m_read').bind('click',function(){$('.l_read').css('display','block');$('.l_comm').css('display','none');$('.m_comm').removeClass('mid_head');$('.m_read').addClass('mid_head');});
	$('.m_comm').bind('click',function(){$('.l_read').css('display','none');$('.l_comm').css('display','block');$('.m_read').removeClass('mid_head');$('.m_comm').addClass('mid_head');});
	$('.search').bind('mouseover',function(){if($('.search').val()=='Search the site'){$('.search').val('');}});
	$('.search').bind('mouseout',function(){if($('.search').val().length==0){$('.search').val('Search the site');}});
	
	$('.email').bind('mouseover',function(){if($('.email').val()=='Enter your email for Newsletter'){$('.email').val('');}});
	$('.email').bind('mouseout',function(){if($('.email').val().length==0){$('.email').val('Enter your email for Newsletter');}});
	
	$('.comm_cat').bind('click',function(){
		var c_id=$(this).attr('c_id');
		
		$('.comm_cat').removeClass('comm_cat_on');
		$('.tab_cat').css('display','none');
		$(this).addClass('comm_cat_on');
		$('.cat_'+c_id).css('display','');
	});
	
});
var start=1,max,inter;

$(document).ready(function(){
	$('.search').bind('keyup',function(event){
		if(event.keyCode==13 && $(this).val().length>=3){
			window.location='/?x=0&y=0&s='+encodeURIComponent($(this).val());
		}else if(event.keyCode==13 && $(this).val().length>0 && $(this).val().length<3){
			alert('You need to enter at least 3 characters.');
		}
	});
	$('#e-form').bind('submit',function(e){
		e.preventDefault();
		window.open('http://feedburner.google.com/fb/a/mailverify?uri=JungleMagazine', 'popupwindow', 'scrollbars=yes,width=550,height=520');
		document.getElementById('e-form').submit();
	});
	$('.e_b').bind('click',function(){
		window.open('http://feedburner.google.com/fb/a/mailverify?uri=JungleMagazine', 'popupwindow', 'scrollbars=yes,width=550,height=520');
		document.getElementById('e-form').submit();
	});
});
