/*
 * Javascript file untuk keperluan theme
 *
 * @author Permana Jayanta <http://www.permanaj.net>
 */
$(document).ready(function(){
	$('.mytextfield').focus(function(){
		$(this).parent('p').addClass('inputHoverClass');
	});
	$('.mytextfield').blur(function(){
		$(this).parent('p').removeClass('inputHoverClass');
	});
});