/*
Site URI: http://greenhouse.fedehartman.com
Date: Mar 2010
jQuery Programmer: Fede Hartman - http://fedehartman.com/
*/

$(document).ready(function(){

/*--IE7-WARNING--*/
	var ie7 = '<div id="i_explorer">' +
					'<div id="i_explorer_overlay"></div>' +
					'<div id="i_explorer_content">' +
					'<p class="first">Sorry but&hellip;</p>' +
					'<p>&#8212;This site does not support your Internet Explorer 7 browser.</p>' +
					'<p>&#8212;I recommend you to upgrade to version 8 by <a href="http://www.microsoft.com/latam/windows/internet-explorer/" target="_blank">clicking here</a> to see the site content.</p>' +
					'<p>&#8212;Further recommend that you use <a href="http://www.mozilla-europe.org/es/firefox/" target="_blank">Mozilla Firefox</a>  to surf the Internet.</p>' +
					'<p>&#8212;Thank you :)</p>' +
					'</div>' +
					'<div>';
	if ($.browser.msie && $.browser.version < "8.0") {
		$("body").append(ie7);
	}

/*--LI-CLICKABLE--*/
	$("ul#foote li").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});

/*--SLIDER--*/
	$('#main.home').cycle({
		fx: 'fade', 
		speed: 2200,
		timeout: 2200 
	});



}); /*--jQuery--*/


