/**
 * Common Javascript Methods
 *
 * @author 		Zone
 * @email		info@zonecontent.com
 * @url 		http://www.zonecontent.com/
 * @copyright 	Copyright (c) 2009, zonecontent.com. All rights reserved.
 * @version		0.0.1
 */

// MSIE state fixes
if($.browser.msie && $.browser.version < 8) {
	// Nuffin to hack yet!
}

// CSS 2/3 modifications
$("#festival-mini-list ol").find("li:even").addClass("odd");
$(".featured-video:last, .thumbnail-list li:nth-child(4n), #rooms-list li:last-child, #menu-colorize li:last").addClass("last");

// Custom style enhancements
$(".featured-video h3 a").each( function () {
	var el = $( this );
	el.html( el.html().replace(" ", "<br />") );
});

$("ul li:odd").addClass("odd");