/***********************
* Adobe Edge Composition Actions
*
* Edit this file with caution, being careful to preserve 
* function signatures and comments starting with 'Edge' to maintain the 
* ability to interact with these actions from within Adobe Edge
*
***********************/
(function($, Edge, compId){
var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes

//Edge symbol: 'stage'
(function(symbolName) {

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 5040, function(e) {
// insert code here
});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 0, function(e) {
// stop the timeline at the current position
this.stop();
// stop the timeline at the current position
this.stop();
//set the value of a Symbol parameter
this.setParameter("myParameterName", "parameterValue");

});
//Edge binding end







Symbol.bindElementAction(compId, symbolName, "${_Groupshot2BW}", "touchmove", function(e) {
// play the timeline from the current position
this.play();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_calendar}", "mouseover", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("calendar")).hide();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_calendar}", "mouseout", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("calendar")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_calendarRO}", "mouseover", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("calendar")).hide();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_calendarRO}", "mouseout", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("calendar")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_calendarRO}", "mouseup", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.realroughdiamonds.com/calendar.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_about}", "mouseover", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("about")).hide();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_aboutRO}", "mouseout", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("about")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_downloads}", "mouseover", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("downloads")).hide();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_downloadsRO}", "mouseout", function(e) {

// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("downloads")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_contact}", "mouseover", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("contact")).hide();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_contactRO}", "mouseout", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("contact")).show();

});
//Edge binding end



Symbol.bindElementAction(compId, symbolName, "${_store}", "mouseover", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("store")).hide();

});
//Edge binding end













Symbol.bindElementAction(compId, symbolName, "${_storeRO}", "mouseup", function(e) {
window.open("http://raveon.fatcow.com/store/index.html", "_self");


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_storeRO}", "mouseout", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("store")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_storeRO}", "touchend", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("store")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_contactRO}", "touchend", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("contact")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_store}", "touchend", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.adobe.com", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_store}", "touchstart", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("store")).hide();


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_aboutRO}", "mouseup", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.realroughdiamonds.com/abouttheband.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_contactRO}", "mouseup", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.realroughdiamonds.com/contact.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_downloadsRO}", "mouseup", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.realroughdiamonds.com/media.html", "_self");

});
//Edge binding end

})("stage");
//Edge symbol end:'stage'

})(jQuery, jQuery.Edge, "EDGE-13505211");
