/**
    Streetworks function library
**/

	function loadVimeo(divid, vimeoid) {
		var embedcode = '<object width="640" height="360"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+vimeoid+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1&amp;autoplay=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id='+vimeoid+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1&amp;autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="640" height="360"></embed></object>';
		$(divid).html(embedcode);
	}
	
	function loadYouTube(divid,youtubeid) {
		var embedcode= '<object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/'+youtubeid+'&hl=en&fs=1&ap=%2526fmt%3D18&autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/'+youtubeid+'&hl=en&fs=1&ap=%2526fmt%3D18&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="360"></embed></object>';	
		$(divid).html(embedcode);
		
	}