﻿/*
	\\\\---------------------------------------------
	//// 	Default javascript CORE functions based on jquery
	\\\\ 	2008 © Coded by : Damien Virot - Sogoa
	////---------------------------------------------
*/

	

// Put all your code in your document ready area
jQuery(document).ready(function($){

	////---------------------------------------------
	//// 	General functions
	////---------------------------------------------
	$("a[@rel=external]").attr("target","_blank");
	$("a[@rel=parent]").attr("target","_parent");
	
	$("a[@href=#]").attr("href","javascript:void(0);");

	$('form:not(.postoffice) input').keypress( function(e){ if (e.keyCode == 13) { $(this).parents('form').submit(); } });
	
	$('img[@src$=.png]:not(.nofix)').ifixpng();
	
	$('.cycle').cycle();
		
});
