/* Default site js file */

$(document).ready( function () {

	$('#header #main_menu ul li').hover(
										function(){
											$(this).children('ul').fadeIn('fast');
										},
										function() {
											$(this).children('ul').fadeOut('fast');
										});

	//$('.kik').attr('href','http://www.asx.com.au/asx/markets/PriceResults.jsp?method=get&template=F1001&ASXCodes=KIK');
	//$('.kiko').attr('href','http://www.asx.com.au/asx/markets/PriceResults.jsp?method=get&template=F1001&ASXCodes=kiko');
	
});