$(function(){
	jQuery.event.add(window, "load", resizeFrame);
	jQuery.event.add(window, "resize", resizeFrame);
	jQuery.event.add(window, "unload", resizeFrame);
	jQuery.event.add(window, "load", clearMargin);
	
	function resizeFrame() 
	{
		var wWidth = $(window).width();
		var wHeight = $(window).height();
	}
	
	function clearMargin() 
	{
		$(".homePopular:nth-child(6n+5)").css("margin-right", "0px");
		$(".showResultByName:nth-child(6n+5)").css("margin-right", "0px");
	}
	
	//Control CSS Style
	//$(".homePopular:nth-child(7n+6)").css("margin-right", "0px");
	//$(".showResultByName:nth-child(5n+4)").css("margin-right", "0px");
	//END-Control CSS Style
});
