jQuery.noConflict();
jQuery(document).ready(function()
	{
		centerTitle();
		setGallery();
		
		
		function centerTitle(){
			if(jQuery('#ejcu .ejcu-head').get(0) != null){	
				jQuery('#ejcu .ejcu-head').parent().outerHeight();
				var parent_height = jQuery('#ejcu .ejcu-head').parent().height(); 
				var txt_height = jQuery('#ejcu .ejcu-head').height();			
				var top_margin = ((parent_height - txt_height)/2) > 0 ? ((parent_height - txt_height)/2) : 0;
				jQuery('#ejcu .ejcu-head').css( 'margin-top' , top_margin);

			}
		}
		
		function setGallery(){	
				if(jQuery('#main-media').get(0) != null){
					jQuery('#main-media').cycle({ 
					    timeout: 5000, 
					    speed:   300,
					    containerResize: 0,
					    fit: 1,
					    height: 250,
					    width: 900,
					    slideExpr: '.hm-media'
					});
				}
		}

	}
);
