$(document).ready(function(){
	// Activate PrettyPhoto Lightbox handle

	$("a[rel^='gallery']").colorbox({
		maxWidth: '800px',
		maxHeight: '600px'
	});
	// PNG Fix

	$(document).pngFix(); 	

	/* Shady's */
	
	// All external urls opens in a new window
	$("a[href^=http]:not([href^=http://egypreneur.com.eg])").attr('target', '_blank');
	
	// Contact opens in a lightbox
	$("a[href=/contact]").colorbox({
		iframe: true,
		width: '740px',
		height: '80%'
	})
	
	// fixing the page name position issue in firefox
	if(navigator.userAgent.indexOf('Firefox') != -1)
		$("#content h1").css({marginTop: 15});
	
	$.getScript(template_dir + '/library/scripts/smooth.pack.js');
	
	// fix for nowhere links
	$("a[href=#]").click(function(e){
		e.preventDefault();
		
		return false;
	})
	
	/* -- */

});
