// JavaScript Document
$(document).ready(function(){
	$('#footer input[name=cm-name]').focus(function(){
   		if( $(this).val()== $(this).attr('title') ){
			$(this).val('');
		}
   });
	$('#footer input[name=cm-name]').blur(function(){
   		if( $.trim( $(this).val() )== '' ){
			$(this).val($(this).attr('title'));
		}
   });
	
	$('#footer input[name=cm-kuihid-kuihid]').focus(function(){
   		if( $(this).val()== $(this).attr('title') ){
			$(this).val('');
		}
   });
	$('#footer input[name=cm-kuihid-kuihid]').blur(function(){
   		if( $.trim( $(this).val() )== '' ){
			$(this).val($(this).attr('title'));
		}
   });
});


$(function(){
	var H = 0;
	$("#content").find(".news-item").each(function(i){
		var h = $(this).eq(i).height();
		if(h > H) H = h;
	});
	$(".news-item").height(H);
});
