$(document).ready(function(){

	// Add colorbox
	$("#services h3 a").colorbox({width:"490px", height:"580px", iframe:true});
	$(".gmap").colorbox({width:"550px", height:"500px", iframe:true});

	// Fetch etui.se
	$.jGFeed('http://feeds.feedburner.com/etuipunktse',
	function(feeds){

		// setup var holding HTML
		var feed_html;
		feed_html = '<ul>';

	  // Check for errors
	  if(!feeds){
	    // there was an error
			feed_html = feed_html + '<li>Kunde inte l&auml;sa RSS...</li></ul>';
	    return false;
	  }
	  // do whatever you want with feeds here
	  for(var i=0; i<feeds.entries.length; i++){
	    var entry = feeds.entries[i];
	    // Entry title
	    feed_html = feed_html + '<li><a href="'+entry.link+'">' + entry.title + '</a></li>';
	  }
		feed_html = feed_html + '</ul>';
		$('#etui-rss').html(feed_html);

	}, 3);
	
	// Hide clients
	$("#clients h2").addClass("hide");

});