(function($) {

	$(document).ready(function() {
		
		// don't use the plugin for ie6
		if($.browser.msie && $.browser.version <= 6)
			return;
		
		$('#page').addClass('pageDynamic');
		$('#page').scale9Grid({top:32, bottom:32, left:32, right:32});
		
		$('.page_item').scale9Grid({top:8, bottom:8, left:8, right:8});
		$('.current_page_item').scale9Grid({top:8, bottom:8, left:8, right:8});
		
		if(!$.browser.msie) { // doesn't work on ie :(
			$('.page_item:not(.current_page_item)').hover(function() {
				$(this).addClass('hover');
				$(this).scale9Grid({top:8, bottom:8, left:8, right:8});
			}, function() {
				$(this).removeClass('hover');
				$(this).scale9Grid({top:8, bottom:8, left:8, right:8});
			});
		}
		
	});

})(jQuery);
