// JavaScript Document

$(document).ready( function() {
	
	// Centering Images Vertically inside the div (default height: 213px)
	var thumbHeight;
	if($('#content-wrapper .post-thumbnail img').height()) {
		if ($('#content-wrapper .post-thumbnail img').height() > 213) {
			thumbHeight = 213;		
		} else {
			thumbHeight = $('#content-wrapper .post-thumbnail img').height();
		}
	} else {
		if ($('.post-thumbnail img').height() > 315) {
			thumbHeight = 315;		
		} else {
			thumbHeight = $('.post-thumbnail img').height();
		}
	}
	$('.post-thumbnail').css("height",thumbHeight);
	
	var thumbOffset = Math.round(($('.post-thumbnail img').height() - thumbHeight) / 2);
	thumbOffset = "-"+thumbOffset+"px";
	$('.post-thumbnail img').css("margin-top",thumbOffset);
	
	
	$('#teaser li').hover( function() {
		$(this).find('a').addClass("hover");
	}, function() {
		$(this).find('a').removeClass("hover");
	});
	$('#teaser li').click( function() {
		var $myUrl = $(this).find('a').attr("href");
		window.location.href = $myUrl;
	});
	
});
