/*Declaracion de funciones*/

//Cufon - sustituye las tipografias 
function cufonLoader(objeto){
	Cufon.replace(objeto);
}
//Galeria de fotos, videos
function galeria(){
	if ($("a[rel^='galeria']").length) {
		$("a[rel^='galeria']").prettyPhoto({
			animationSpeed: 'normal', /* fast/slow/normal */
			padding: 20, /* padding for each side of the picture */
			opacity: 0.6, /* Value betwee 0 and 1 */
			showTitle: false, /* true/false */
			allowresize: false, /* true/false */
			counter_separator_label: ' de ', /* The separator for the gallery counter 1 "of" 2 */
			theme: 'dark_square' /* light_rounded / dark_rounded / light_square / dark_square */
		});
	}
}
/*Ejecucion de funciones*/
$(document).ready(function(){
	cufonLoader("h2, h3, h4, .cufonVariable");	
	galeria();
});