// developing : Onur Özkan, published : Web Deneyimleri, updated : Eburhan
jQuery(document).ready(function($) {
	function vertical_alignment () {
		var window_height = document.documentElement.clientHeight
		var content_height = $("#cm").height()
		var top_space = ((window_height - content_height) / 2) + "px"
		$("#cm").css("margin-top",top_space)
	}
	$(window).bind ("load",vertical_alignment)
	$(window).bind ("resize",vertical_alignment)
})
