//$('head').append('<link href="resources/css/default.css" rel="stylesheet" type="text/css" />');
$().ready(function() {
	
	
	var max_height = $('#header').height();
	$('#header').css({'position':'absolute', 'top': (max_height*-1)+'px'});
	$('.container').css('margin-top', max_height + 'px');
	
	max_height = Math.max($('.mid-panel').height(), $('.side-bar').height())+15;
	$('.mid-panel').css('height', max_height + 'px');
	$('.side-bar').css('height', max_height + 'px');
	
	$('span.page_no_input').html('<input type="text" class="page_no" value="1" />');
	
	$('.page_no').keypress(function(e) {
			if(e.keyCode == 13) {
					alert('You pressed enter!' + $(this).val());
			}
	});	
	
	$('.item').each(function(index) {
		var lnk = $('h2 a', this).attr('href');
		$('.more', this).attr("onclick","self.location='" + lnk + "'");
		$('.img img', this).attr("onclick","self.location='" + lnk + "'");
		
		var heading = $('h2', this).html();
		$('h2', this).html('<table><tr><td>' + heading + '</td></tr></table>')
		
		
  });
});

